(prompt "Select the drawer where you want the lsdBase executable to be placed. A new drawer will NOT be created")
(help @askdir-help)
(default "SYS:Utilities")
)
)
(complete 30)
(set #doc_dest
(askdir
(prompt "Select the drawer where you want the lsdBase documentation to be placed.")
(help @askdir-help)
(default "HELP:")
)
)
(complete 50)
(set #diskdrawer
(askdir
(prompt "Select the drawer where your CDID's are stored.")
(help @askdir_help)
(default "Work:")
)
)
(complete 70)
(set #askdev
(askbool
(prompt "Do you wish to setup lsdBase to access your CD-ROM drive (needs cdplay.library to be installed)?")
(help "lsdBase can access your CD-ROM drive through cdplay.library in order to find which CD is in the drive, and to play tracks. To be able to do this, you must tell lsdBase what SCSI device you use, and what unit number your CD-ROM drive is. If you answer yes here, the installer will ask you for this information, and set lsdBase's tooltypes for you.")
)
)
(if (= #askdev 1)
(set #device
(askstring
(prompt "Please enter the name of your SCSI controller's device controller")
(help @askstring-help)
(default "scsi.device")
)
)
)
(complete 80)
(if (= #askdev 1)
(set #unit
(askstring
(prompt "Please enter the SCSI unit of your CD-ROM drive")
(default "2")
(help @asknumber-help)
)
)
)
(if (= @user-level 2)
(set #askeasyreq
(askbool
(prompt "Do you wish to use standard library calls for requesters instead of using MUI calls?")
(help "AmigaOS has a standard method of bringing up a message requester - the EasyRequest() function. MUI provides a replacement for this, which uses your MUI preferences and is better than the standard requester. However, there are a number of patch programs, such as Arq and RTPatch which patch the standard requester to make it much better - I myself run Arq. Because of this, I've put in this option. If you answer yes, lsdBase uses EasyRequest() instead of it's MUI equivelant.")